Data Science: Visualization!)

Section 1: Introduction to Data Visualization and Distributions

You will get started with data visualization and distributions in R.

Section 2: Introduction to ggplot2

You will learn how to use the ggplot2 package to create plots.

Section 3: Summarizing with dplyr

You will learn how to summarize data using the dplyr package.

Section 4: Gapminder

You will see examples of ggplot2 and dplyr in action with the Gapminder dataset.

Section 5: Data Visualization Principles

You will learn general principles to guide you in developing effective data visualizations.

Section 1)

Data Types

Functions Overview:

        numeric

Code From Video:

numeric

Key Points:

        DataCamp Data Types)

                Code:

table()                #counts frequency

                        

1.2 Intro to Distributions

DataCamp Assessment: Normal distribution)

        Code:

library(dslabs)

data(heights)

x <- heights$height[heights$sex == "Male"]

mean(x>69 & x<=72)         #What proportion of the data is between 69 and 72 inches (taller than 69 but shorter or equal to 72)? A proportion is between 0 and 1.